home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pi3web_dos.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  75 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. #
  5. #
  6. # See the Nessus Scripts License for details
  7. #
  8. # We do banner checking, as I could not get my hands on a vulnerable version
  9. #
  10. # Refs: http://online.securityfocus.com/archive/1/250126
  11. #
  12.  
  13. if(description)
  14. {
  15.  script_id(11099);
  16.  script_bugtraq_id(3866);
  17.  script_cve_id("CAN-2002-0142");
  18.  script_version ("$Revision: 1.6 $");
  19.  
  20.  name["english"] = "Pi3Web Webserver v2.0 Buffer Overflow ";
  21.  
  22.  script_name(english:name["english"]);
  23.  
  24.  desc["english"] = "
  25. The remote server may crash when it is sent 
  26. a very long cgi paramater multiple times, as in :
  27.  
  28.     GET /cgi-bin/hello.exe?AAAAA[...]AAAA
  29.     
  30. An attacker may use this flaw to prevent the remote
  31. host from working properly.
  32.  
  33. Solution: upgrade to version 2.0.1 of Pi3Web
  34. Risk factor : High";
  35.  
  36.  script_description(english:desc["english"]);
  37.  
  38.  # Summary
  39.  summary["english"] = "Tests for a DoS in Pi3Web";
  40.  script_summary(english:summary["english"]);
  41.  
  42.  # Category
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  # Dependencie(s)
  46.  script_dependencie("find_service.nes", "http_version.nasl");
  47.  
  48.  # Family
  49.  family["english"] = "Denial of Service";
  50.  family["francais"] = "DΘni de service";
  51.  script_family(english:family["english"],
  52.                francais:family["francais"]);
  53.  
  54.  # Copyright
  55.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  56.                   francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  57.  
  58.  script_require_ports("Services/www", 80);
  59.  exit(0);
  60. }
  61.  
  62.  
  63. include ("http_func.inc");
  64. port = get_http_port(default:80);
  65.  
  66.  
  67.  
  68. banner = get_http_banner(port:port);
  69. if(banner)
  70. {
  71.  if(egrep(pattern:"^Server: Pi3Web/2\.0\.[01]", string:banner))
  72.        security_hole(port);
  73. }
  74.  
  75.